/*
 * Tema Adı: Sınıfçı Durağı Stilleri
 * Açıklama: Claude'un tasarımına ait renkler ve animasyonlar.
 */

/* TRT Çocuk Tarzı - Sinifci Duragi Genel Stilleri */
.sinifci-duragi-container {
    padding: 24px 16px;
    background: linear-gradient(to bottom, #fff7ed 0%, #ffefe5 50%, #fff0f5 100%); /* Yellow-Orange-Pink Gradient */
    font-family: sans-serif;
}

/* Header */
.sd-header {
    background: linear-gradient(to right, #ff7f00, #ff69b4); /* Orange-Pink Gradient */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    padding: 16px;
    position: sticky;
    top: 0;
    z-index: 40;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sd-logo {
    font-size: 40px; /* 5xl */
    text-shadow: 2px 2px #d43d54;
}
.sd-title {
    color: white;
    font-size: 24px; /* 3xl */
    font-weight: bold;
    text-shadow: 2px 2px #d43d54;
    line-height: 1.2;
}
.sd-subtitle {
    color: white;
    font-size: 14px;
    opacity: 0.9;
}
.sd-menu-button {
    padding: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 16px;
    transition: all 0.2s;
    cursor: pointer;
}
.sd-menu-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.sd-menu-icon {
    width: 32px;
    height: 32px;
    color: white;
}

/* Sınıf Durakları Stilleri */
.sd-grade-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sd-grade-card {
    width: 100%;
    padding: 24px;
    margin-bottom: 16px;
    border: none;
    border-radius: 24px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    transform: translateY(0);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sd-grade-card:hover {
    transform: scale(1.02);
}
.sd-grade-card:active {
    transform: scale(0.98);
}
.sd-grade-card .icon {
    font-size: 48px; /* 6xl */
}
.sd-grade-card .emoji {
    font-size: 40px; /* 5xl */
}
.sd-grade-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px #0000004d;
    margin: 0;
}
.sd-grade-card p {
    color: white;
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

/* Renk Geçişleri (Claude'un renkleri) */
.grade-1 { background: linear-gradient(to right, #fb7185, #f472b6); } /* Red-Pink */
.grade-2 { background: linear-gradient(to right, #fb923c, #fde047); } /* Orange-Yellow */
.grade-3 { background: linear-gradient(to right, #4ade80, #10b981); } /* Green-Emerald */
.grade-4 { background: linear-gradient(to right, #60a5fa, #22d3ee); } /* Blue-Cyan */


/* Oyun Kartları */
.sd-game-card {
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    font-weight: bold;
}
.sd-game-card:hover {
    transform: scale(1.05);
}
.sd-game-card:active {
    transform: scale(0.95);
}
.sd-game-card-icon {
    font-size: 40px;
    margin-bottom: 8px;
}
.sd-game-card h4 {
    color: white;
    font-size: 14px;
    margin: 0;
}
.game-color-1 { background-color: #FF7F00; } /* Canlı Turuncu */
.game-color-2 { background-color: #32CD32; } /* Parlak Yeşil */
.game-color-3 { background-color: #00BFFF; } /* Gökyüzü Mavisi */
.game-color-4 { background-color: #FFD700; } /* Sıcak Sarı */

/* Animasyonlar */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
}
.animate-wiggle {
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes slide-in {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
.animate-slide-in {
    animation: slide-in 0.6s ease-out forwards;
}